Merged
Conversation
- Link to edit page from résumé show page - Form for editing user information, pre-populated with existing data - Routes to update user data in database
[Better errors](https://github.com/charliesome/better_errors) is a great gem for debugging in Rack applications (like Sinatra and Rails).
The résumé edit page will now render all of the jobs as forms that users can update. As of now, each job is editable in isolation (i.e. no batch updates of multiple jobs). Added a new route to handle updating jobs.
The résumé edit page will now render all of the skills as forms that users can update. As of now, each skill is editable in isolation (i.e. no batch updates of multiple skill). Added a new route to handle updating skills.
tannerwelsh
added a commit
that referenced
this pull request
Oct 30, 2014
Users can edit content of résumé
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Users can edit the content of their résumé at the route
/resumes/edit. This page includes a form to edit the user profile information, all of their jobs, and all of their skills.At this point, users cannot add or remove jobs or skills.
This branch also adds a new gem to the development dependencies: better_errors, which renders richer error messages in the browser.